Bugs?: Please include the the file and version information (from above) with
the problem description. Developers belonging to one of the Apple
developer programs can submit bug reports to:
devsupport@apple.com
*/
#ifndef __ADSPSECURE__
#define __ADSPSECURE__
#ifndef __TYPES__
#include <Types.h>
#endif
#ifndef __ADSP__
#include <ADSP.h>
#endif
#ifndef __OCEAUTHDIR__
#include <OCEAuthDir.h>
#endif
#if PRAGMA_ONCE
#pragma once
#endif
#ifdef __cplusplus
extern "C" {
#endif
#if PRAGMA_IMPORT
#pragma import on
#endif
#if PRAGMA_STRUCT_ALIGN
#pragma options align=mac68k
#elif PRAGMA_STRUCT_PACKPUSH
#pragma pack(push, 2)
#elif PRAGMA_STRUCT_PACK
#pragma pack(2)
#endif
/* New ADSP control codes
* open a secure connection */
enum {
sdspOpen = 229
};
/*
For secure connections, the eom field of ioParams contains two single-bit flags
(instead of a zero/non-zero byte). They are an encrypt flag (see below), and an
eom flag. All other bits in that field should be zero.
To write an encrypted message, you must set an encrypt bit in the eom field of
the ioParams of your write call. Note: this flag is only checked on the first
write of a message (the first write on a connection, or the first write following
a write with eom set.
*/
enum {
dspEOMBit = 0, /* set if EOM at end of write */
dspEncryptBit = 1 /* set to encrypt message */
};
enum {
dspEOMMask = 1 << dspEOMBit,
dspEncryptMask = 1 << dspEncryptBit
};
/*
Define an ADSPSecure parameter block, as used for the secure Open call.
* size of ADSPSecure workspace */
enum {
sdspWorkSize = 2048
};
struct TRSecureParams {
unsigned short localCID; /* local connection id */
unsigned short remoteCID; /* remote connection id */
AddrBlock remoteAddress; /* address of remote end */
AddrBlock filterAddress; /* address filter */
unsigned long sendSeq; /* local send sequence number */
unsigned short sendWindow; /* send window size */
unsigned long recvSeq; /* receive sequence number */
unsigned long attnSendSeq; /* attention send sequence number */
unsigned long attnRecvSeq; /* attention receive sequence number */
unsigned char ocMode; /* open connection mode */
unsigned char ocInterval; /* open connection request retry interval */
unsigned char ocMaximum; /* open connection request retry maximum */
Boolean secure; /* --> TRUE if session was authenticated */
AuthKeyPtr sessionKey; /* <--> encryption key for session */
unsigned long credentialsSize; /* --> length of credentials */
void * credentials; /* --> pointer to credentials */
void * workspace; /* --> pointer to workspace for connection align on even boundary and length = sdspWorkSize */
AuthIdentity recipient; /* --> identity of recipient (or initiator if active mode */
UTCTime issueTime; /* --> when credentials were issued */
UTCTime expiry; /* --> when credentials expiry */
RecordIDPtr initiator; /* <-- RecordID of initiator returned here. Must give appropriate Buffer to hold RecordID (Only for passive or accept mode) */
Boolean hasIntermediary; /* <-- will be set if credentials has an intermediary */
Boolean filler1;
RecordIDPtr intermediary; /* <-- RecordID of intermediary returned here. (If intermediary is found in credentials Must give appropriate Buffer to hold RecordID (Only for passive or accept mode) */